home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / eot_splash_load.ifx.pre < prev    next >
Text File  |  2004-08-03  |  995b  |  44 lines

  1. /*
  2.  * EOT_Splash_Load.ifx.pre
  3.  * Written by Gerald Bonnstetter
  4.  *
  5.  * Autofx Splash Sequence Effect.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Sequence number (?)
  9.  *    Word(Arg(1),2) = Total number of frames (N)
  10.  *
  11.  * Returns:
  12.  *    0 if successful, non-zero on failure
  13.  *
  14.  */
  15.  
  16. OPTIONS RESULTS
  17.  
  18. base  = 'Autofx_Splash_'
  19.  
  20. lpath = GETCLIP(base||'Path')
  21. lfile = GETCLIP(base||'File')
  22. step  = GETCLIP(base||'StepSize')
  23.  
  24. IF lpath = "" THEN lpath = "Storage/Splash"
  25. IF step  = "" THEN step  =   1
  26.  
  27. Gadget.1 = 'STRING  150  10 260 14 "Splash Options File:"' lfile
  28. Gadget.2 = 'FILEREQ 412  10  20 14 "Splash Options File:" 'lpath ' #?' lfile 'AT=1'
  29. Gadget.3 = 'INTEGER 150  26 110 14 "Step Size:"' step
  30. Gadget.4 = 'END'
  31.  
  32. NewComplexRequest '"Splash Sequence"' Gadget 450 53
  33. IF rc ~= 0 THEN EXIT rc
  34.  
  35. CALL SETCLIP(base||'Path'     , result.2.path)
  36. CALL SETCLIP(base||'File'     , result.2.file)
  37. CALL SETCLIP(base||'StepSize' , result.3)
  38.  
  39. increment = - result.3
  40.  
  41. CALL SETCLIP(base||'Increment', increment)
  42.  
  43. EXIT
  44.